home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 480.lha / SmartField / Docs / Function Synopses.pp / Function Synopses
Encoding:
Text File  |  1991-02-11  |  6.3 KB  |  305 lines

  1. FUNCTION SYNOPSES
  2.  
  3.  
  4. This section in the official manual will contain the page numbers of where
  5. you can find these functions in the "Function Description" section and the
  6. most current version number of each function.
  7.  
  8.  
  9. void buffer_char_delete( field )
  10.     struct Field *field
  11.  
  12. void buffer_char_insert( field )
  13.     struct Field *field
  14.  
  15. void con_char_backspace( wreq )
  16.     struct IOStdReq *wreq
  17.  
  18. void con_char_delete( wreq )
  19.     struct IOStdReq *wreq
  20.  
  21. void con_char_insert( wreq )
  22.     struct IOStdReq *wreq
  23.  
  24. void con_char_mult_delete( wreq, chars )
  25.     struct IOStdReq *wreq
  26.     int chars
  27.  
  28. void con_display_erase( wreq )
  29.     struct IOStdReq *wreq
  30.  
  31. void con_events( wreq, flags, set_or_reset )
  32.     struct IOStdReq *wreq
  33.     ULONG flags
  34.     UBYTE set_or_reset
  35.  
  36. void con_graphic_rend( wreq, style, foreground, backround )
  37.     struct IOStdReq *wreq
  38.     USHORT style
  39.     USHORT foreground
  40.     USHORT backround
  41.  
  42. void con_left_offset( wreq, x )
  43.     struct IOStdReq *wreq
  44.     int x
  45.  
  46. void con_line_erase( wreq )
  47.     struct IOStdReq *wreq
  48.  
  49. void con_line_length( wreq, length )
  50.     struct IOStdReq *wreq
  51.     int length
  52.  
  53. void con_line_next( wreq )
  54.     struct IOStdReq *wreq
  55.  
  56. void con_line_prev( wreq )
  57.     struct IOStdReq *wreq
  58.  
  59. void con_line_scroll_down( wreq )
  60.     struct IOStdReq *wreq
  61.  
  62. void con_line_scroll_up( wreq )
  63.     struct IOStdReq *wreq
  64.  
  65. long con_open( window, wreq, rreq )
  66.     struct Window *window
  67.     struct IOStdReq *wreq
  68.     struct IOStdReq *rreq
  69.  
  70. void con_page_length( wreq, length )
  71.     struct IOStdReq *wreq
  72.     int length
  73.  
  74. void con_put_char( wreq, character )
  75.     struct IOStdReq *wreq
  76.     UBYTE character
  77.  
  78. void con_put_line( wreq, string, max )
  79.     struct IOStdReq *wreq
  80.     UBYTE *string
  81.     int max
  82.  
  83. void con_put_string( wreq, string )
  84.     struct IOStdReq *wreq
  85.     UBYTE *string
  86.  
  87. void con_read( rreq, input_buffer )
  88.     struct IOStdReq *rreq
  89.     UBYTE *input_buffer
  90.  
  91. void con_top_offset( wreq, y )
  92.     struct IOStdReq *wreq
  93.     int y
  94.  
  95. void con_write( wreq, string, length )
  96.     struct IOStdReq *wreq
  97.     UBYTE *string
  98.     int length
  99.  
  100. void console close( header )
  101.     struct ConsoleHeader *header
  102.  
  103. int console_input( header )
  104.     struct ConsoleHeader *header
  105.  
  106. long console_open( window, header, buffer )
  107.     struct Window *window
  108.     struct ConsoleHeader *header
  109.     UBYTE *buffer
  110.  
  111. void cursor_invisible( wreq )
  112.     struct IOStdReq *wreq
  113.  
  114. void cursor_jump_left( wreq, positions )
  115.     struct IOStdReq *wreq
  116.     int positions
  117.  
  118. void cursor_jump_right( wreq, positions )
  119.     struct IOStdReq *wreq
  120.     int positions
  121.  
  122. void cursor_left( wreq )
  123.     struct IOStdReq *wreq
  124.  
  125. void cursor_place( wreq, x, y )
  126.     struct IOStdReq *wreq
  127.     int x
  128.     int y
  129.  
  130. void cursor_pos( wreq, row, col )
  131.     struct IOStdReq *wreq
  132.     int row
  133.     int col
  134.  
  135. void cursor_right( wreq )
  136.     struct IOStdReq *wreq
  137.  
  138. void cursor_visible( wreq )
  139.     struct IOStdReq *wreq
  140.  
  141. int field_add_list( header, position, add, count )
  142.     struct FieldHeader *header
  143.     UINT position
  144.     struct Field *add
  145.     UINT count
  146.  
  147. void field_char_backspace( field, wreq )
  148.     struct Field *field
  149.     struct IOStdReq *wreq
  150.  
  151. void field_char_delete( field, wreq )
  152.     struct Field *field
  153.     struct IOStdReq *wreq
  154.  
  155. void field_char_type( field, wreq, character, mode )
  156.     struct Field *field
  157.     struct IOStdReq *wreq
  158.     UBYTE character
  159.     int mode
  160.  
  161. int field_clear( header, first, count, place )
  162.     struct FieldHeader *header
  163.     struct Field *first
  164.     UINT count
  165.     struct Field *place
  166.  
  167. struct Field *field_click( header, mouseX, mouseY )
  168.     struct FieldHeader *header
  169.     SHORT mouseX
  170.     SHORT mouseY
  171.  
  172. void field_close( header )
  173.     struct FieldHeader *header
  174.  
  175. void field_copy( field, wreq )
  176.     struct Field *field
  177.     struct IOStdReq *wreq
  178.  
  179. void field_cursor_left( field, wreq )
  180.     struct Field *field
  181.     struct IOStdReq *wreq
  182.  
  183. void field_cursor_right( field, wreq )
  184.     struct Field *field
  185.     struct IOStdReq *wreq
  186.  
  187. void field_cut( field, wreq )
  188.     struct Field *field
  189.     struct IOStdReq *wreq
  190.  
  191. void field_delete( field, wreq )
  192.     struct Field *field
  193.     struct IOStdReq *wreq
  194.  
  195. void field_delete_backward( field, wreq )
  196.     struct Field *field
  197.     struct IOStdReq *wreq
  198.  
  199. void field_delete_forward( field, wreq )
  200.     struct Field *field
  201.     struct IOStdReq *wreq
  202.  
  203. void field_disable( header, field )
  204.     struct FieldHeader *header
  205.     struct Field *field
  206.  
  207. int field_display( header, first, count, place )
  208.     struct FieldHeader *header
  209.     struct Field *first
  210.     UINT count
  211.     struct Field *place
  212.  
  213. void field_dup( field, wreq )
  214.     struct Field *field
  215.     struct IOStdReq *wreq
  216.  
  217. void field_enable( field )
  218.     struct Field *field
  219.  
  220. void field_goto( header, field )
  221.     struct FieldHeader *header
  222.     struct Field *field
  223.  
  224. int field_input( header )
  225.     struct FieldHeader *header
  226.  
  227. void field_left( field, wreq )
  228.     struct Field *field
  229.     struct IOStdReq *wreq
  230.  
  231. struct Field *field_link( final )
  232.     struct Field *final
  233.  
  234. int field_open( window, header, initial, final, buffer )
  235.     struct Window *window
  236.     struct FieldHeader *header
  237.     struct Field *initial
  238.     struct Field *final
  239.     UBYTE *buffer
  240.  
  241. void field_paste( field, wreq )
  242.     struct Field *field
  243.     struct IOStdReq *wreq
  244.  
  245. int field_redisplay( header, first, count, place )
  246.     struct FieldHeader *header
  247.     struct Field *first
  248.     UINT count
  249.     struct Field *place
  250.  
  251. int field_refresh( header, first, count, place )
  252.     struct FieldHeader *header
  253.     struct Field *first
  254.     UINT count
  255.     struct Field *place
  256.  
  257. int field_remove_list( header, remove, count )
  258.     struct FieldHeader *header
  259.     struct Field *remove
  260.     UINT count
  261.  
  262. int field_reshow( header, first, count, place )
  263.     struct FieldHeader *header
  264.     struct Field *first
  265.     UINT count
  266.     struct Field *place
  267.  
  268. void field_restore( field, wreq )
  269.     struct Field *field
  270.     struct IOStdReq *wreq
  271.  
  272. void field_right( field, wreq )
  273.     struct Field *field
  274.     struct IOStdReq *wreq
  275.  
  276. void field_tab_backward( field, wreq )
  277.     struct Field *field
  278.     struct IOStdReq *wreq
  279.  
  280. void field_tab_forward( field, wreq )
  281.     struct Field *field
  282.     struct IOStdReq *wreq
  283.  
  284. void mask_chars( mask, string, set )
  285.     struct FieldMask *mask
  286.     UBYTE *string
  287.     ULONG set
  288.  
  289. void mask_entire( mask, set )
  290.     struct FieldMask *mask
  291.     ULONG set
  292.  
  293. void mask_range( mask, low, high, set )
  294.     struct FieldMask *mask
  295.     UBYTE low
  296.     UBYTE high
  297.     ULONG set
  298.  
  299.  
  300. Function Synopses  01/13/90
  301. © Copyright 1990 Timm Martin
  302. All Rights Reserved Worldwide
  303.  
  304. /*-- END --*/
  305.